Next

LInteger: A C++ Library for Arbitrary Precision Integer Arithmetic

Copyright (C) 1996 by Leonard Janke

Abstract

LInteger is a C++ library designed to allow programmers to create objects representing nearly arbitrary precision integers. Thanks to C++'s support for operator overloading, the use of the large integers in this library should be nearly as easy as the use of regular ints. In fact, much code which performs arithmetic on regular ints can be converted to code to perform the same arithmetic on arbitrary precision integers merely by substituting LInteger for int.


Next